home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19971216-19980424 / 000345_news@newsmaster….columbia.edu _Fri Mar 27 10:30:51 1998.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id KAA10930
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Fri, 27 Mar 1998 10:30:50 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id KAA07256
  7.     for kermit.misc@watsun; Fri, 27 Mar 1998 10:30:50 -0500 (EST)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc,dorsai.helpdesk
  11. Subject: Re: Lynx 2.7.1 Download Protocol Options (to include Kermit)
  12. Date: 27 Mar 1998 15:30:49 GMT
  13. Organization: Columbia University
  14. Lines: 28
  15. Message-ID: <6fggn9$l0s$1@apakabar.cc.columbia.edu>
  16. References: <6ffpu4$5tb@enews4.newsguy.com>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:8543 dorsai.helpdesk:2192
  19.  
  20. In article <6ffpu4$5tb@enews4.newsguy.com>,
  21. Vasos Panagiotopoulos +1-917-287-8087 Bioengineer-Financier <vjp2@dorsai.org @smtp.dorsai.org> wrote:
  22. : I've seen Kermit available as a download option on Columbia libraries'
  23. : Lynx 2.7.1 but here at Dorsai (ISP which I first learned about in the
  24. : 1988 Columbia Mac UG newsletter) we only have Xmodem and Zmodem. In
  25. : usr/local/bin we have files named lynx_sb lynx_sx and lynx_sz (no
  26. : lynx_sk) which seem to be BASH scripts to handle the loading of those
  27. : protocols. I see nothing about Kermit in my .lynxrc. I was wondering
  28. : what I should tell the folks at Dorsai about how to include Kermit as
  29. : an option (actually, one of them asked me to find out - I'm including
  30. : the Dorsai helpdesk newsgroup on the post header).
  31. As far as I can tell, helper programs for Lynx are configurable only at
  32. compile time.  Add the following line to the Lynx userdefs.h file before
  33. building the Lynx binary:
  34.  
  35.   #define TELNET_COMMAND "/opt/bin/kermit -J"
  36.  
  37. And then add lines like the following to the Lynx.cfg file:
  38.  
  39. DOWNLOADER:Kermit binary download:/opt/bin/kermit -i -V -s %s -a %s:TRUE
  40. DOWNLOADER:Kermit text download:/opt/bin/kermit -s %s -a %s:TRUE
  41. UPLOADER:Kermit binary upload:/opt/bin/kermit -i -r -a %s:TRUE
  42. UPLOADER:Kermit text upload:/opt/bin/kermit -r -a %s:TRUE
  43.  
  44. (the switches shown are for C-Kermit 6.0)
  45.  
  46. - Frank